home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / NETPROG.ZIP;1 / NETPROG.TAR / nspipe.s5 / Makefile next >
Encoding:
Makefile  |  1989-12-17  |  176 b   |  15 lines

  1. #
  2.  
  3. MYLIB    = ../libnet.a
  4.  
  5. all:    readnspipe
  6.  
  7. #
  8.  
  9. readnspipe: readnspipe.o $(MYLIB)
  10.         cc $(CFLAGS) -o $@ readnspipe.o $(MYLIB)
  11.  
  12. #
  13. clean:
  14.     -rm -f *.o core a.out temp*.* readnspipe
  15.